-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.1.0.1 (a sin)^m (b trg)^n.nb
More file actions
10194 lines (9986 loc) · 493 KB
/
4.1.0.1 (a sin)^m (b trg)^n.nb
File metadata and controls
10194 lines (9986 loc) · 493 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 494446, 10185]
NotebookOptionsPosition[ 483397, 9903]
NotebookOutlinePosition[ 485155, 9957]
CellTagsIndexPosition[ 485112, 9954]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["0:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{"u",
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.5418136182858934`*^9, 3.541813646495933*^9}, {
3.541885900975107*^9, 3.541885900975107*^9}, {3.5418899389143834`*^9,
3.5418899662244215`*^9}, 3.5418900751945744`*^9, {3.5462974735235267`*^9,
3.546297473743527*^9}, {3.560128588234247*^9, 3.560128589104248*^9}, {
3.560128670294362*^9, 3.560128673044366*^9}, 3.560216297553895*^9,
3.5606251400716968`*^9, {3.561749988629304*^9, 3.56175000739933*^9}, {
3.5617574489046125`*^9, 3.561757453934619*^9}, 3.5617578683751993`*^9, {
3.561758400818445*^9, 3.5617584075484543`*^9}, {3.561758717288888*^9,
3.5617587174988885`*^9}, {3.5617603061411123`*^9, 3.5617603105011187`*^9},
3.5617605991515226`*^9, {3.561760630041566*^9, 3.561760630041566*^9},
3.56203042461959*^9, 3.5620880721126423`*^9, {3.5620933445200233`*^9,
3.5620933547300377`*^9}, {3.562093987920924*^9, 3.56209399237093*^9}, {
3.5620995170537643`*^9, 3.5620995170537643`*^9}, {3.5621013517663326`*^9,
3.562101351996333*^9}, {3.5633361467746754`*^9, 3.563336146794675*^9}, {
3.563388115059457*^9, 3.563388116198259*^9}, {3.5633881657127457`*^9,
3.5633881705487547`*^9}, 3.5633885482410173`*^9, {3.5633927828402014`*^9,
3.5633927836102023`*^9}, {3.5633941071945558`*^9, 3.563394113084564*^9}, {
3.5633946475353127`*^9, 3.5633946613453317`*^9}, {3.5633963928077555`*^9,
3.5633963931377563`*^9}, {3.563396687078168*^9, 3.5633966873581676`*^9}, {
3.5633968368983774`*^9, 3.5633968388183804`*^9}, {3.5634007192983603`*^9,
3.563400719518361*^9}, {3.563401058258835*^9, 3.563401058478835*^9}, {
3.563401805429881*^9, 3.5634018157698956`*^9}, {3.563669338730335*^9,
3.5636693467331495`*^9}, {3.5673642739754224`*^9, 3.567364281495433*^9}, {
3.5674488109192443`*^9, 3.5674488109192443`*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell[BoxData[
RowBox[{"If", "[",
RowBox[{
RowBox[{"TrueQ", "[", "$LoadShowSteps", "]"}], ",", "\n", "\n",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"u_", ",", "x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"DeactivateTrig", "[",
RowBox[{"u", ",", "x"}], "]"}], ",", "x"}], "]"}], " ", "/;", "\n",
RowBox[{"SimplifyFlag", " ", "&&", " ",
RowBox[{"FunctionOfTrigOfLinearQ", "[",
RowBox[{"u", ",", "x"}], "]"}]}]}]}], ",", "\n", "\n",
RowBox[{
RowBox[{"Int", "[",
RowBox[{"u_", ",", "x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{"DeactivateTrig", "[",
RowBox[{"u", ",", "x"}], "]"}], ",", "x"}], "]"}], " ", "/;", "\n",
RowBox[{"FunctionOfTrigOfLinearQ", "[",
RowBox[{"u", ",", "x"}], "]"}]}]}]}], "]"}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.4964415782510386`*^9,
3.4965287890937347`*^9, 3.4975759366868963`*^9, 3.5098474835889254`*^9, {
3.5099092953540363`*^9, 3.5099092985832415`*^9}, {3.509909366989362*^9,
3.5099093682997637`*^9}, {3.509909434849481*^9, 3.509909436643484*^9}, {
3.511224412138645*^9, 3.511224459952729*^9}, {3.5112247828212953`*^9,
3.5112247891081057`*^9}, {3.5153733055764923`*^9,
3.5153733240469246`*^9}, {3.547954326143468*^9, 3.5479543280154715`*^9}, {
3.5745492283552675`*^9, 3.5745492371052794`*^9}, 3.735588815702188*^9,
3.735600355599266*^9, 3.737503808416898*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[BoxData[Cell[TextData[{
StyleBox["Rules for integrands of the form ",
FontFamily->"Arial"],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Trg", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"]}]],
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9,
3.5193415113404875`*^9}, {3.5193513965602303`*^9,
3.519351397420232*^9}, {3.5194037839416766`*^9, 3.5194037847117205`*^9},
3.52105258275843*^9, 3.5210531741726685`*^9, {3.521057461672199*^9,
3.5210574760242243`*^9}, {3.521059881564049*^9, 3.521059886088057*^9}, {
3.5213902158895197`*^9, 3.521390217543123*^9}, {3.521390827878595*^9,
3.521390829376197*^9}, {3.5214688792561245`*^9, 3.521468879443325*^9}, {
3.523320201951167*^9, 3.523320202247567*^9}, {3.5288596764894824`*^9,
3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9,
3.5295115433443794`*^9}, {3.529521412127842*^9, 3.529521414647986*^9}, {
3.529529429975619*^9, 3.529529432955224*^9}, 3.5340074894011116`*^9,
3.5415537711400824`*^9, {3.5415538409034047`*^9, 3.541553841106205*^9}, {
3.5415564120531206`*^9, 3.5415564206955357`*^9},
3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, {3.5416506679001875`*^9, 3.541650687980216*^9},
3.560533948494043*^9, 3.560538006319724*^9, {3.5605392374714475`*^9,
3.5605392382814484`*^9}, 3.5606250606115856`*^9, 3.5617573869745255`*^9,
3.561757856045182*^9, {3.561761339582559*^9, 3.5617613636025925`*^9}, {
3.5617652519980364`*^9, 3.561765252188037*^9}, {3.561767460571129*^9,
3.5617674608411293`*^9}, 3.5621081762414055`*^9, {3.5621084468550806`*^9,
3.5621084519718895`*^9}, 3.563340740121106*^9},
FontWeight->"Bold"]
}], "None"]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.4965234353062396`*^9, {3.5193214825316973`*^9, 3.5193214852617016`*^9}, {
3.523316399894187*^9, 3.5233164032341914`*^9}, {3.523318350558202*^9,
3.5233183516382036`*^9}, {3.536542725780803*^9, 3.536542725780803*^9}, {
3.5367764878952584`*^9, 3.5367764886452594`*^9}, {3.544322815209103*^9,
3.5443228192963104`*^9}, {3.5450662624913826`*^9, 3.545066292141424*^9}, {
3.545066402271579*^9, 3.5450664054415827`*^9}, {3.5450834884295015`*^9,
3.5450834895895033`*^9}, {3.5454961263762493`*^9,
3.5454961321462574`*^9}, {3.5454963863166127`*^9,
3.5454964580867133`*^9}, {3.545497046127537*^9, 3.545497046127537*^9}, {
3.5454971130676303`*^9, 3.545497136257663*^9}, 3.545610399977621*^9, {
3.546040778592962*^9, 3.546040778592962*^9}, {3.5461052065706367`*^9,
3.5461052249474688`*^9}, {3.546191339879622*^9, 3.5461913430596266`*^9}, {
3.5462141824067917`*^9, 3.5462142145768366`*^9}, {3.5462145455473003`*^9,
3.5462145601073203`*^9}, {3.5463149785974817`*^9,
3.5463149794195285`*^9}, {3.5488738437683954`*^9,
3.5488738699084315`*^9}, {3.5488890647645535`*^9, 3.548889080804576*^9}, {
3.5505951583099127`*^9, 3.5505951620351257`*^9}, {3.5505952613798075`*^9,
3.5505952630869055`*^9}, {3.5535321133435373`*^9,
3.5535321173537664`*^9}, {3.5536175341411576`*^9,
3.5536175352411594`*^9}, {3.55396599671187*^9, 3.55396599862998*^9}, {
3.560190530310161*^9, 3.560190628512334*^9}, {3.5602162723838596`*^9,
3.5602162793138695`*^9}, {3.5606249190913877`*^9, 3.560624924321395*^9}, {
3.5617663419995623`*^9, 3.5617663705796027`*^9}, {3.5617666456099873`*^9,
3.561766656350003*^9}, {3.562107691486154*^9, 3.5621077390350375`*^9}, {
3.5621080165751247`*^9, 3.5621080185719285`*^9}, {3.5621081511877613`*^9,
3.5621081511877613`*^9}, {3.5633407304210925`*^9, 3.563340730891093*^9}, {
3.575852587746504*^9, 3.575852593256511*^9}, {3.575852659996605*^9,
3.575852659996605*^9}, {3.575852743186721*^9, 3.575852743186721*^9}, {
3.57585284254686*^9, 3.575852895956935*^9}, {3.575853026617118*^9,
3.575853038617135*^9}, {3.575853153907296*^9, 3.575853185757341*^9}, {
3.575853290447487*^9, 3.575853290447487*^9}, {3.5758553923824325`*^9,
3.5758553923824325`*^9}, {3.584065420110304*^9, 3.584065420110304*^9}, {
3.5840681647441463`*^9, 3.5840681647441463`*^9}, {3.597025735088087*^9,
3.5970257398148956`*^9}, {3.61180769286159*^9, 3.6118076944826827`*^9}, {
3.611893421298149*^9, 3.61189342185815*^9}, {3.6165273275171223`*^9,
3.616527349017153*^9}, {3.6589593982836084`*^9, 3.6589593982836084`*^9}, {
3.6752686482691746`*^9, 3.6752686482691746`*^9}, {3.675268884329676*^9,
3.675268884329676*^9}, {3.6772140863140616`*^9, 3.6772140863140616`*^9}, {
3.691626171215994*^9, 3.691626171215994*^9}, {3.6916311449762383`*^9,
3.6916311449762383`*^9}},
TextAlignment->Center,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"], " ",
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538409034047`*^9, 3.541553841106205*^9}, {3.5415564120531206`*^9,
3.5415564206955357`*^9}, 3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, {3.5416506679001875`*^9, 3.541650687980216*^9},
3.560533948494043*^9, 3.560538006319724*^9, {3.5605392374714475`*^9,
3.5605392382814484`*^9}, 3.5606250606115856`*^9, 3.5617573869745255`*^9,
3.561757856045182*^9, 3.562030414929576*^9, 3.562087519391868*^9, {
3.562093244219883*^9, 3.562093254789898*^9}, {3.5620932902799473`*^9,
3.562093293699952*^9}, {3.562100852615634*^9, 3.562100864475651*^9}, {
3.5621010852459598`*^9, 3.5621010854559603`*^9}, {3.563336146084674*^9,
3.5633361461046743`*^9}, 3.5633970241086397`*^9, {3.5639109075287514`*^9,
3.563910907728751*^9}, {3.5640714617578106`*^9, 3.564071482976024*^9},
3.596743393469017*^9, 3.6131542131370077`*^9, {3.6142960435284176`*^9,
3.6142960439834433`*^9}, {3.6647510217520933`*^9, 3.6647510217630944`*^9},
3.664812305722004*^9, 3.6648254213915806`*^9, {3.664827176443964*^9,
3.664827177297013*^9}, {3.6652446551943626`*^9, 3.6652446553659625`*^9}, {
3.665280730478092*^9, 3.6652807369707036`*^9}, {3.665535368260048*^9,
3.6655353811100655`*^9}, 3.6655983811913023`*^9, {3.675268773444334*^9,
3.6752688025980015`*^9}, 3.675268890045003*^9, 3.6916254239112506`*^9,
3.6916257369651566`*^9, 3.691625979*^9, {3.6916261504198046`*^9,
3.691626162291484*^9}, {3.6916311301862173`*^9, 3.691631149946245*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"m", "+", "n", "+", "2"}], "\[Equal]", "0"}], " ", "\[And]",
" ",
RowBox[{"m", "\[NotEqual]",
RowBox[{"-", "1"}]}]}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.5418136182858934`*^9, 3.541813646495933*^9}, {
3.541885900975107*^9, 3.541885900975107*^9}, {3.5418899389143834`*^9,
3.5418899662244215`*^9}, 3.5418900751945744`*^9, {3.5462974735235267`*^9,
3.546297473743527*^9}, {3.560128588234247*^9, 3.560128589104248*^9}, {
3.560128670294362*^9, 3.560128673044366*^9}, 3.560216297553895*^9,
3.5606251400716968`*^9, {3.561749988629304*^9, 3.56175000739933*^9}, {
3.5617574489046125`*^9, 3.561757453934619*^9}, 3.5617578683751993`*^9, {
3.561758400818445*^9, 3.5617584075484543`*^9}, {3.561758717288888*^9,
3.5617587174988885`*^9}, {3.5617603061411123`*^9, 3.5617603105011187`*^9},
3.5617605991515226`*^9, {3.561760630041566*^9, 3.561760630041566*^9},
3.56203042461959*^9, 3.5620880721126423`*^9, {3.5620933445200233`*^9,
3.5620933547300377`*^9}, {3.56209392087083*^9, 3.5620939403408575`*^9}, {
3.562101080295953*^9, 3.5621010808759537`*^9}, {3.5633361457246733`*^9,
3.5633361457446737`*^9}, {3.5633897540359592`*^9, 3.5633897564359627`*^9},
3.563397022158637*^9, {3.563910901728743*^9, 3.563910901898743*^9}, {
3.564071455493452*^9, 3.564071455753467*^9}, 3.5967429675184207`*^9,
3.613154211362005*^9, {3.6647510214380755`*^9, 3.6647510214490767`*^9},
3.664812302765835*^9, 3.664825421266574*^9, {3.665244652074357*^9,
3.665244652339557*^9}, 3.6752688181898932`*^9, 3.6752690656600475`*^9, {
3.675269426839706*^9, 3.675269426839706*^9}, 3.677214093092449*^9,
3.6773007059707108`*^9, 3.691625424519285*^9, 3.6916257374771852`*^9, {
3.6916259799910564`*^9, 3.6916259808981085`*^9}, 3.6916261942873135`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[TextData[{
"Reference: G&R 2.510.3, CRC 334a, A&S 4.3.128b with ",
Cell[BoxData[
RowBox[{
RowBox[{"m", "+", "n", "+", "2"}], "\[Equal]", "0"}]],
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.49644160092107*^9,
3.496441663571158*^9, {3.496528814953771*^9, 3.4965288223737817`*^9},
3.497576045657049*^9, 3.497576089857111*^9, 3.4975776169418545`*^9, {
3.497577677171939*^9, 3.497577691381959*^9}, {3.4976395112561064`*^9,
3.4976395477133703`*^9}, {3.4977276351693482`*^9, 3.497727644763365*^9}, {
3.497727950523902*^9, 3.4977279522711053`*^9}, {3.499131609862951*^9,
3.499131627792976*^9}, {3.5633361457546735`*^9, 3.5633361457846737`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, {3.4975778216221414`*^9,
3.497577829892153*^9}, {3.4975827089309845`*^9, 3.4975827138509912`*^9},
3.497639710530856*^9, 3.4976397495153246`*^9, 3.497728192009127*^9,
3.4977282459540215`*^9, 3.4977284496435795`*^9, {3.5633367916855783`*^9,
3.5633368142756095`*^9}, {3.6752694276707535`*^9,
3.6752694276707535`*^9}, {3.691625981889165*^9, 3.691625981889165*^9}}],
Cell[TextData[{
"Reference: G&R 2.510.6, CRC 334b, A&S 4.3.128a",
" with ",
Cell[BoxData[
RowBox[{
RowBox[{"m", "+", "n", "+", "2"}], "\[Equal]", "0"}]],
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.49644160092107*^9,
3.496441663571158*^9, {3.496528814953771*^9, 3.4965288223737817`*^9},
3.497576045657049*^9, 3.497576089857111*^9, 3.4975776169418545`*^9, {
3.497577677171939*^9, 3.497577691381959*^9}, {3.4976395112561064`*^9,
3.4976395477133703`*^9}, {3.4977276351693482`*^9, 3.497727644763365*^9}, {
3.497727950523902*^9, 3.4977279522711053`*^9}, {3.499131609862951*^9,
3.499131627792976*^9}, {3.5633361457546735`*^9, 3.5633361457846737`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, {3.4975778216221414`*^9,
3.497577829892153*^9}, {3.4975827089309845`*^9, 3.4975827138509912`*^9},
3.497639710530856*^9, 3.4976397495153246`*^9, 3.497728192009127*^9,
3.4977282459540215`*^9, 3.4977284496435795`*^9, 3.4979921349613705`*^9,
3.5633368183856153`*^9, {3.675269428397795*^9, 3.675269428398795*^9}, {
3.6916259829292245`*^9, 3.6916259829292245`*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"m", "+", "n", "+", "2"}], "\[Equal]", "0"}], " ", "\[And]", " ",
RowBox[{"m", "\[NotEqual]",
RowBox[{"-", "1"}]}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9,
3.496528833243797*^9, {3.4975777080419827`*^9, 3.4975777244120054`*^9},
3.4976397903561964`*^9, {3.4977276559485846`*^9, 3.4977276831862326`*^9}, {
3.4979913869868565`*^9, 3.497991388203659*^9}, {3.562093926440838*^9,
3.5620939281108403`*^9}, {3.563389762815972*^9, 3.563389762815972*^9}, {
3.675269429374851*^9, 3.675269429374851*^9}, {3.691625984137294*^9,
3.691625984137294*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}],
RowBox[{"m", "+", "1"}]],
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", " ",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}],
RowBox[{"n", "+", "1"}]]}],
RowBox[{"a", " ", "b", " ", "f", " ",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}]]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579723816*^9, 3.4796580261689425`*^9},
3.479661191290163*^9, {3.479686720164157*^9, 3.479686720204214*^9}, {
3.479686831554328*^9, 3.479686834819022*^9}, {3.4940970712485504`*^9,
3.4940971130286083`*^9}, 3.4940971455886545`*^9, 3.49644160092107*^9,
3.496441663571158*^9, {3.496528814953771*^9, 3.4965288223737817`*^9},
3.497576045657049*^9, 3.497576089857111*^9, 3.4975776169418545`*^9, {
3.497577677171939*^9, 3.497577691381959*^9}, {3.4976395112561064`*^9,
3.4976395477133703`*^9}, {3.4977276351693482`*^9, 3.497727644763365*^9}, {
3.497727950523902*^9, 3.4977279522711053`*^9}, {3.499131609862951*^9,
3.499131627792976*^9}, {3.5633361457546735`*^9, 3.5633361457846737`*^9},
3.5967428488182545`*^9, {3.596742926018362*^9, 3.5967429311883698`*^9}, {
3.6647510214720774`*^9, 3.664751021495079*^9}, 3.6647513498558598`*^9, {
3.6648254212805743`*^9, 3.6648254212845745`*^9}, 3.664825637034915*^9,
3.6752690672441387`*^9, 3.675269430083892*^9, {3.675269697974214*^9,
3.6752696989082675`*^9}, 3.6752699441162925`*^9, {3.6916254286005187`*^9,
3.691625429789587*^9}, {3.6916257381422234`*^9, 3.6916257396293087`*^9}, {
3.691625984904338*^9, 3.691625985800389*^9}, 3.691626194474324*^9,
3.6916285087026906`*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, 3.691625740844378*^9, 3.6916259059968243`*^9}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "*",
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ")"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"b_.", "*",
RowBox[{"cos", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ")"}], "^", "n_."}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "*",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"b", "*",
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"n", "+", "1"}], ")"}]}], "/",
RowBox[{"(",
RowBox[{"a", "*", "b", "*", "f", "*",
RowBox[{"(",
RowBox[{"m", "+", "1"}], ")"}]}], ")"}]}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "e", ",", "f", ",", "m", ",", "n"}], "}"}],
",", "x"}], "]"}], " ", "&&", " ",
RowBox[{"EqQ", "[",
RowBox[{
RowBox[{"m", "+", "n", "+", "2"}], ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"NeQ", "[",
RowBox[{"m", ",",
RowBox[{"-", "1"}]}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.4964415782510386`*^9,
3.4965287890937347`*^9, 3.4975759366868963`*^9, 3.497577547811758*^9,
3.49758349857209*^9, 3.4976394822868557`*^9, 3.497727597947683*^9,
3.4979913639144163`*^9, {3.4991316098729506`*^9, 3.4991316278029757`*^9}, {
3.563336145794674*^9, 3.563336145814674*^9}, {3.563393580831319*^9,
3.5633935973113413`*^9}, 3.5639111105790353`*^9, {3.596742973268429*^9,
3.596742984288444*^9}, {3.596743015518488*^9, 3.5967430310285096`*^9}, {
3.664751046302498*^9, 3.6647510463114986`*^9}, {3.664751084206666*^9,
3.6647510842156663`*^9}, 3.664751262236849*^9, 3.664751305515324*^9,
3.664825446607023*^9, 3.6648254830311065`*^9, 3.664825553893159*^9,
3.6648256069421935`*^9, {3.6752691498578634`*^9, 3.6752691582123413`*^9}, {
3.675269431028946*^9, 3.675269431596978*^9}, 3.6752695491277003`*^9,
3.6752695850697565`*^9, {3.6752697829890766`*^9, 3.675269783709118*^9},
3.675269825638516*^9, 3.6752698835258265`*^9, 3.675269961941312*^9, {
3.6752700429849477`*^9, 3.675270045052066*^9}, {3.691625430489627*^9,
3.6916254330557737`*^9}, {3.691625741351407*^9, 3.6916257426704826`*^9},
3.6916258865937147`*^9, {3.6916259864254246`*^9, 3.691625988199526*^9},
3.691628002687748*^9, {3.6916280725707455`*^9, 3.6916280761289487`*^9}, {
3.691628283238795*^9, 3.6916282856799345`*^9}, {3.7049862507386775`*^9,
3.7049862739060025`*^9}},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["2:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
FractionBox[
RowBox[{"n", "-", "1"}], "2"], "\[Element]",
"\[DoubleStruckCapitalZ]"}]]]], "None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.5418136182858934`*^9, 3.541813646495933*^9}, {
3.541885900975107*^9, 3.541885900975107*^9}, {3.5418899389143834`*^9,
3.5418899662244215`*^9}, 3.5418900751945744`*^9, {3.5462974735235267`*^9,
3.546297473743527*^9}, {3.560128588234247*^9, 3.560128589104248*^9}, {
3.560128670294362*^9, 3.560128673044366*^9}, 3.560216297553895*^9,
3.5606251400716968`*^9, {3.561749988629304*^9, 3.56175000739933*^9}, {
3.5617574489046125`*^9, 3.561757453934619*^9}, 3.5617578683751993`*^9, {
3.561758400818445*^9, 3.5617584075484543`*^9}, {3.561758717288888*^9,
3.5617587174988885`*^9}, {3.5617603061411123`*^9, 3.5617603105011187`*^9},
3.5617605991515226`*^9, {3.561760630041566*^9, 3.561760630041566*^9},
3.56203042461959*^9, 3.5620880721126423`*^9, {3.5620933445200233`*^9,
3.5620933547300377`*^9}, {3.562093948760869*^9, 3.5620939538408766`*^9}, {
3.562101082145955*^9, 3.5621010823659554`*^9}, {3.563336145834674*^9,
3.563336145844674*^9}, 3.5633970227886376`*^9, {3.563910903298745*^9,
3.563910903458746*^9}, {3.5640714571435466`*^9, 3.564071457344558*^9},
3.596743130558649*^9, 3.613154211832006*^9, {3.6549693793568835`*^9,
3.6549693820710387`*^9}, {3.6647510216150856`*^9, 3.6647510216280866`*^9},
3.6648123048329535`*^9, 3.6648254213015757`*^9, {3.6648271721887207`*^9,
3.6648271732357807`*^9}, {3.6652446536967597`*^9, 3.66524465391516*^9},
3.6752688189619374`*^9, {3.675269094272684*^9, 3.675269098381919*^9}, {
3.6752700918127403`*^9, 3.6752701118888884`*^9}, 3.677214095774603*^9,
3.6773007068277597`*^9, 3.6916254342488422`*^9, {3.691625989040574*^9,
3.691625990506658*^9}, {3.6916262238720055`*^9, 3.691626228170252*^9}, {
3.691630459289262*^9, 3.691630459289262*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["\<\
Derivation: Integration by substitution\
\>", "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, {3.4975778216221414`*^9,
3.497577829892153*^9}, {3.4975827089309845`*^9, 3.4975827138509912`*^9},
3.497639710530856*^9, 3.497727769376384*^9, {3.6916257432115135`*^9,
3.6916257481327953`*^9}}],
Cell[TextData[{
"Basis: If ",
Cell[BoxData[
RowBox[{
FractionBox[
RowBox[{"n", "-", "1"}], "2"], "\[Element]", "\[DoubleStruckCapitalZ]"}]]],
", then ",
Cell[BoxData[
RowBox[{
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "n"]}], "\[Equal]",
RowBox[{
FractionBox["1",
RowBox[{"a", " ", "f"}]],
RowBox[{"Subst", "[",
RowBox[{
RowBox[{
SuperscriptBox["x", "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"1", "-",
FractionBox[
SuperscriptBox["x", "2"],
SuperscriptBox["a", "2"]]}], ")"}],
FractionBox[
RowBox[{"n", "-", "1"}], "2"]]}], ",", "x", ",",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], "]"}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}]}]}]}]]]
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, {3.4975778216221414`*^9,
3.497577829892153*^9}, {3.4975827089309845`*^9, 3.4975827138509912`*^9},
3.497639710530856*^9, {3.497727769376384*^9, 3.4977279239102554`*^9}, {
3.4977280278688383`*^9, 3.497728029538041*^9}, {3.49772809175095*^9,
3.497728115119791*^9}, {3.499131609892951*^9, 3.499131627812976*^9}, {
3.515381148112835*^9, 3.515381153619645*^9}, {3.515381210107344*^9,
3.515381210450545*^9}, {3.562111256653615*^9, 3.5621113114721117`*^9}, {
3.563336145874674*^9, 3.563336145904674*^9}, {3.563336873905693*^9,
3.563336873905693*^9}, {3.596743161608692*^9, 3.596743173308709*^9}, {
3.664751021656088*^9, 3.66475102168009*^9}, {3.664751449170541*^9,
3.664751449170541*^9}, {3.664825421337578*^9, 3.664825421337578*^9}, {
3.6648256726769533`*^9, 3.6648256726769533`*^9}, {3.675270118505267*^9,
3.675270127017754*^9}, {3.6916254395401444`*^9, 3.691625440972226*^9}, {
3.691625991499715*^9, 3.6916259930688047`*^9}, {3.691630393000167*^9,
3.691630393000167*^9}, {3.691801917056072*^9, 3.691801917056072*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
FractionBox[
RowBox[{"n", "-", "1"}], "2"], "\[Element]", "\[DoubleStruckCapitalZ]"}]]],
", then"
}], "Subsubsection",
CellChangeTimes->{
3.4964418130913677`*^9, {3.496442428087432*^9, 3.4964424330170403`*^9},
3.496528894323882*^9, 3.4975761400971813`*^9, {3.4975778216221414`*^9,
3.497577829892153*^9}, {3.4975827089309845`*^9, 3.4975827138509912`*^9},
3.497639710530856*^9, {3.497727769376384*^9, 3.4977279239102554`*^9}, {
3.4977279951087804`*^9, 3.497728007354802*^9}, {3.5967430887485905`*^9,
3.5967430962786007`*^9}, {3.675270132482066*^9, 3.6752701336181316`*^9}, {
3.6916259938198476`*^9, 3.691625994419882*^9}, {3.69163046520927*^9,
3.69163046520927*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"Cos", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox["1",
RowBox[{"a", " ", "f"}]]}]}],
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox["x", "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"1", "-",
FractionBox[
SuperscriptBox["x", "2"],
SuperscriptBox["a", "2"]]}], ")"}],
FractionBox[
RowBox[{"n", "-", "1"}], "2"]],
RowBox[{"\[DifferentialD]", "x"}]}]}], ",", "x", ",",
RowBox[{"a", " ",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], "]"}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,
3.496441872881451*^9}, {3.496528916553913*^9, 3.4965289272239285`*^9}, {
3.497576165747217*^9, 3.4975761801372375`*^9}, {3.497577761382057*^9,
3.4975777938921027`*^9}, 3.49763959300025*^9, 3.497639634480723*^9,
3.4977277558667603`*^9, 3.4977279564051123`*^9, {3.499131609902951*^9,
3.499131627822976*^9}, {3.515381218687359*^9, 3.51538121910856*^9}, {
3.563336145914674*^9, 3.5633361459346743`*^9}, 3.563336855015667*^9,
3.5967431395686617`*^9, 3.596743265578838*^9, {3.664751021720092*^9,
3.6647510217340927`*^9}, 3.6647514587830906`*^9, 3.6648254213705797`*^9,
3.6648257095060596`*^9, {3.6752701378843756`*^9, 3.675270139108445*^9}, {
3.6916254418082743`*^9, 3.6916254431603518`*^9}, 3.691625945735097*^9, {
3.691625995648952*^9, 3.6916259964239964`*^9}, {3.6918019367971*^9,
3.6918019591391315`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, 3.691625743988558*^9, 3.691625907781926*^9}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "*",
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ")"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"cos", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}], "^", "n_."}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{"1", "/",
RowBox[{"(",
RowBox[{"a", "*", "f"}], ")"}]}], "*",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"x", "^", "m"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"1", "-",
RowBox[{
RowBox[{"x", "^", "2"}], "/",
RowBox[{"a", "^", "2"}]}]}], ")"}], "^",
RowBox[{"(",
RowBox[{
RowBox[{"(",
RowBox[{"n", "-", "1"}], ")"}], "/", "2"}], ")"}]}]}], ",",
"x"}], "]"}], ",", "x", ",",
RowBox[{"a", "*",
RowBox[{"Sin", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}]}], "]"}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "e", ",", "f", ",", "m"}], "}"}], ",", "x"}], "]"}],
" ", "&&", " ",
RowBox[{"IntegerQ", "[",
RowBox[{
RowBox[{"(",
RowBox[{"n", "-", "1"}], ")"}], "/", "2"}], "]"}], " ", "&&", " ",
RowBox[{"Not", "[",
RowBox[{
RowBox[{"IntegerQ", "[",
RowBox[{
RowBox[{"(",
RowBox[{"m", "-", "1"}], ")"}], "/", "2"}], "]"}], " ", "&&", " ",
RowBox[{"LtQ", "[",
RowBox[{"0", ",", "m", ",", "n"}], "]"}]}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4975775509417624`*^9, 3.497577752792045*^9, 3.4975834953320856`*^9,
3.4976395861674376`*^9, 3.497727590085269*^9, 3.4977277276307106`*^9, {
3.4991316099129505`*^9, 3.499131627832976*^9}, {3.515381222275366*^9,
3.5153812226965666`*^9}, 3.5490782937156935`*^9, 3.560912710430691*^9,
3.5609703501601954`*^9, 3.56097061928397*^9, {3.5633361459346743`*^9,
3.563336145954674*^9}, {3.5633935808513184`*^9, 3.5633935973313417`*^9},
3.563646669293786*^9, 3.563670060429185*^9, 3.563819439283348*^9,
3.56391106394897*^9, 3.5639111121990376`*^9, {3.5967432854588656`*^9,
3.5967433018988886`*^9}, 3.6131900666262197`*^9, 3.6131904771638994`*^9,
3.6647510463965034`*^9, {3.6647510843096714`*^9, 3.664751084318672*^9},
3.66475126226385*^9, 3.6647513055553265`*^9, 3.664825483062108*^9,
3.66482555391016*^9, 3.664825606963195*^9, {3.6652445556179867`*^9,
3.6652445981652613`*^9}, 3.665244629198716*^9, {3.675269164784717*^9,
3.6752691693859806`*^9}, 3.675269550087755*^9, {3.675270148909006*^9,
3.675270158437551*^9}, {3.691625444217412*^9, 3.691625446465541*^9}, {
3.6916257627276297`*^9, 3.6916257631516542`*^9}, 3.691625886616716*^9, {
3.6916259324413366`*^9, 3.6916259457540984`*^9}, {3.6916259978420773`*^9,
3.691626000279217*^9}, {3.69162808069921*^9, 3.6916280854794836`*^9}, {
3.6918019998201895`*^9, 3.6918020408572483`*^9}, {3.7152887867309065`*^9,
3.715288794736721*^9}},
Background->GrayLevel[0.85]],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "*",
RowBox[{"cos", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ")"}], "^", "m_."}], "*",
RowBox[{
RowBox[{"sin", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}], "^", "n_."}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{